home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
BARNET
/
FREENET
/
MELL
/
NETLIB00
/
!NetLib
/
netinet
/
h
/
udp
< prev
Wrap
Text File
|
1995-05-23
|
339b
|
19 lines
#ifndef __netinet_udp_h
#define __netinet_udp_h
#include "sys/types.h"
/*
* Structure of a UDP header
* Per RFC 768, September, 1981.
*/
struct udphdr {
u_short uh_sport; /* Source port */
u_short uh_dport; /* Destination port */
short uh_ulen; /* Length */
u_short uh_sum; /* Checksum */
};
#endif